home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / network / base / netkit-b.07a / netkit-b / NetKit-B-0.07A / tftp / tftpsubs.c < prev   
Encoding:
C/C++ Source or Header  |  1996-07-20  |  8.2 KB  |  264 lines

  1. /*
  2.  * Copyright (c) 1983 Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice, this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright
  11.  *    notice, this list of conditions and the following disclaimer in the
  12.  *    documentation and/or other materials provided with the distribution.
  13.  * 3. All advertising materials mentioning features or use of this software
  14.  *    must display the following acknowledgement:
  15.  *    This product includes software developed by the University of
  16.  *    California, Berkeley and its contributors.
  17.  * 4. Neither the name of the University nor the names of its contributors
  18.  *    may be used to endorse or promote products derived from this software
  19.  *    without specific prior written permission.
  20.  *
  21.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  22.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  25.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31.  * SUCH DAMAGE.
  32.  */
  33.  
  34. /*
  35.  * From: @(#)tftpsubs.c    5.6 (Berkeley) 2/28/91
  36.  */
  37. char subs_rcsid[] = 
  38.   "$Id: tftpsubs.c,v 1.3 1996/07/20 21:04:16 dholland Exp $";
  39.  
  40. /* Simple minded read-ahead/write-behind subroutines for tftp user and
  41.    server.  Written originally with multiple buffers in mind, but current
  42.    implementation has two buffer logic wired in.
  43.  
  44.    Todo:  add some sort of final error check so when the write-buffer
  45.    is finally flushed, the caller can detect if the disk filled up
  46.    (or had an i/o error) and return a nak to the other side.
  47.  
  48.             Jim Guyton 10/85
  49.  */
  50.  
  51. #include <sys/types.h>
  52. #include <sys/socket.h>
  53. #include <sys/ioctl.h>
  54. #include <netinet/in.h>
  55. #include <arpa/tftp.h>
  56. #include <unistd.h>
  57. #include <stdio.h>
  58.  
  59. #define PKTSIZE SEGSIZE+4       /* should be moved to tftp.h */
  60.  
  61. struct bf {
  62.     int counter;            /* size of data in buffer, or flag */
  63.     char buf[PKTSIZE];      /* room for data packet */
  64. } bfs[2];
  65.  
  66.                 /* Values for bf.counter  */
  67. #define BF_ALLOC -3             /* alloc'd but not yet filled */
  68. #define BF_FREE  -2             /* free */
  69. /* [-1 .. SEGSIZE] = size of data in the data buffer */
  70.  
  71. static int nextone;     /* index of next buffer to use */
  72. static int current;     /* index of buffer in use */
  73.  
  74.             /* control flags for crlf conversions */
  75. int newline = 0;        /* fillbuf: in middle of newline expansion */
  76. int prevchar = -1;      /* putbuf: previous char (cr check) */
  77.  
  78. void read_ahead(FILE *file, int convert /* if true, convert to ascii */);
  79. int write_behind(FILE *file, int convert);
  80. struct tftphdr *rw_init(int);
  81.  
  82. struct tftphdr *w_init() { return rw_init(0); }         /* write-behind */
  83. struct tftphdr *r_init() { return rw_init(1); }         /* read-ahead */
  84.  
  85. struct tftphdr *
  86. rw_init(int x)              /* init for either read-ahead or write-behind */
  87. {                          /* zero for write-behind, one for read-head */
  88.     newline = 0;            /* init crlf flag */
  89.     prevchar = -1;
  90.     bfs[0].counter =  BF_ALLOC;     /* pass out the first buffer */
  91.     current = 0;
  92.     bfs[1].counter = BF_FREE;
  93.     nextone = x;                    /* ahead or behind? */
  94.     return (struct tftphdr *)bfs[0].buf;
  95. }
  96.  
  97.  
  98. /* Have emptied current buffer by sending to net and getting ack.
  99.    Free it and return next buffer filled with data.
  100.  */
  101. int
  102. readit(FILE *file, struct tftphdr **dpp, 
  103.        int convert /* if true, convert to ascii */)
  104. {
  105.     struct bf *b;
  106.  
  107.     bfs[current].counter = BF_FREE; /* free old one */
  108.     current = !current;             /* "incr" current */
  109.  
  110.     b = &bfs[current];              /* look at new buffer */
  111.     if (b->counter == BF_FREE)      /* if it's empty */
  112.         read_ahead(file, convert);      /* fill it */
  113. /*      assert(b->counter != BF_FREE); */ /* check */
  114.     *dpp = (struct tftphdr *)b->buf;        /* set caller's ptr */
  115.     return b->counter;
  116. }
  117.  
  118. /*
  119.  * fill the input buffer, doing ascii conversions if requested
  120.  * conversions are  lf -> cr,lf  and cr -> cr, nul
  121.  */
  122. void
  123. read_ahead(FILE *file, int convert /* if true, convert to ascii */)
  124. {
  125.     register int i;
  126.     register char *p;
  127.     register int c;
  128.     struct bf *b;
  129.     struct tftphdr *dp;
  130.  
  131.     b = &bfs[nextone];              /* look at "next" buffer */
  132.     if (b->counter != BF_FREE)      /* nop if not free */
  133.         return;
  134.     nextone = !nextone;             /* "incr" next buffer ptr */
  135.  
  136.     dp = (struct tftphdr *)b->buf;
  137.  
  138.     if (convert == 0) {
  139.         b->counter = read(fileno(file), dp->th_data, SEGSIZE);
  140.         return;
  141.     }
  142.  
  143.     p = dp->th_data;
  144.     for (i = 0 ; i < SEGSIZE; i++) {
  145.         if (newline) {
  146.             if (prevchar == '\n')
  147.                 c = '\n';       /* lf to cr,lf */
  148.             else    c = '\0';       /* cr to cr,nul */
  149.             newline = 0;
  150.         }
  151.         else {
  152.             c = getc(file);
  153.             if (c == EOF) break;
  154.             if (c == '\n' || c == '\r') {
  155.                 prevchar = c;
  156.                 c = '\r';
  157.                 newline = 1;
  158.             }
  159.         }
  160.            *p++ = c;
  161.     }
  162.     b->counter = (int)(p - dp->th_data);
  163. }
  164.  
  165. /* Update count associated with the buffer, get new buffer
  166.    from the queue.  Calls write_behind only if next buffer not
  167.    available.
  168.  */
  169. int
  170. writeit(FILE *file, struct tftphdr **dpp, int ct, int convert)
  171. {
  172.     bfs[current].counter = ct;      /* set size of data to write */
  173.     current = !current;             /* switch to other buffer */
  174.     if (bfs[current].counter != BF_FREE)     /* if not free */
  175.         write_behind(file, convert);     /* flush it */
  176.     bfs[current].counter = BF_ALLOC;        /* mark as alloc'd */
  177.     *dpp =  (struct tftphdr *)bfs[current].buf;
  178.     return ct;                      /* this is a lie of course */
  179. }
  180.  
  181. /*
  182.  * Output a buffer to a file, converting from netascii if requested.
  183.  * CR,NUL -> CR  and CR,LF => LF.
  184.  * Note spec is undefined if we get CR as last byte of file or a
  185.  * CR followed by anything else.  In this case we leave it alone.
  186.  */
  187. int
  188. write_behind(FILE *file, int convert)
  189. {
  190.     char *buf;
  191.     int count;
  192.     register int ct;
  193.     register char *p;
  194.     register int c;                 /* current character */
  195.     struct bf *b;
  196.     struct tftphdr *dp;
  197.  
  198.     b = &bfs[nextone];
  199.     if (b->counter < -1)            /* anything to flush? */
  200.         return 0;               /* just nop if nothing to do */
  201.  
  202.     count = b->counter;             /* remember byte count */
  203.     b->counter = BF_FREE;           /* reset flag */
  204.     dp = (struct tftphdr *)b->buf;
  205.     nextone = !nextone;             /* incr for next time */
  206.     buf = dp->th_data;
  207.  
  208.     if (count <= 0) return -1;      /* nak logic? */
  209.  
  210.     if (convert == 0)
  211.         return write(fileno(file), buf, count);
  212.  
  213.     p = buf;
  214.     ct = count;
  215.     while (ct--) {                  /* loop over the buffer */
  216.         c = *p++;                   /* pick up a character */
  217.         if (prevchar == '\r') {     /* if prev char was cr */
  218.         if (c == '\n')          /* if have cr,lf then just */
  219.            fseek(file, -1, 1);  /* smash lf on top of the cr */
  220.         else
  221.            if (c == '\0')       /* if have cr,nul then */
  222.             goto skipit;    /* just skip over the putc */
  223.         /* else just fall through and allow it */
  224.         }
  225.         putc(c, file);
  226. skipit:
  227.         prevchar = c;
  228.     }
  229.     return count;
  230. }
  231.  
  232.  
  233. /* When an error has occurred, it is possible that the two sides
  234.  * are out of synch.  Ie: that what I think is the other side's
  235.  * response to packet N is really their response to packet N-1.
  236.  *
  237.  * So, to try to prevent that, we flush all the input queued up
  238.  * for us on the network connection on our host.
  239.  *
  240.  * We return the number of packets we flushed (mostly for reporting
  241.  * when trace is active).
  242.  */
  243.  
  244. int
  245. synchnet(int f /* socket to flush */)
  246. {
  247.     int i, j = 0;
  248.     char rbuf[PKTSIZE];
  249.     struct sockaddr_in from;
  250.     int fromlen;
  251.  
  252.     while (1) {
  253.         (void) ioctl(f, FIONREAD, &i);
  254.         if (i) {
  255.             j++;
  256.             fromlen = sizeof from;
  257.             (void) recvfrom(f, rbuf, sizeof (rbuf), 0,
  258.                 (struct sockaddr *)&from, &fromlen);
  259.         } else {
  260.             return(j);
  261.         }
  262.     }
  263. }
  264.